home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / epp / docs / pmodules / mousepointer.doc < prev    next >
Text File  |  1980-01-05  |  691b  |  16 lines

  1. mousePointer.e:
  2.  
  3.   newPointer(pointerImage) - Create and initialize a mouse pointer.  Allocates
  4.         chip memory and initializes a mouse pointer image from image data.
  5.         pointerImage is a pointer to an array of integers; must be longword
  6.         aligned, and must be 16x16 pixels, even if some of the pixels aren't
  7.         used.  No sanity checks are made.  Returns a pointer to the new mouse
  8.         pointer image, or NIL if unsuccessful.
  9.  
  10.   freePointer(pointer) - free the chip memory at location pointer.  NOTE:  MUST
  11.         be called in order to free the pointer; CleanUp()  !!! WILL NOT !!!
  12.         return the memory.
  13.  
  14.   setPointer(win,pointer) - set pointer for window win.
  15.  
  16.